home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / archiver / ncmp424d.zoo / diffs next >
Text File  |  1992-10-21  |  2KB  |  69 lines

  1. ===================================================================
  2. RCS file: /net/acae127/home/bammi/etc/src/master/compress/compress42.c,v
  3. retrieving revision 1.1.1.1
  4. diff -c -r1.1.1.1 compress42.c
  5. *** 1.1.1.1    1992/10/20 22:11:28
  6. --- compress42.c    1992/10/20 22:43:06
  7. ***************
  8. *** 285,290 ****
  9. --- 285,311 ----
  10.   #    define    COMPILE_DATE    __DATE__
  11.   #endif /* DOS */
  12.   
  13. + #ifdef atarist            /* atari St/TT/Falcon series, with gcc */
  14. + #    define    FAST        1
  15. + #    undef   BYTEORDER
  16. + #    define  BYTEORDER    1234
  17. + #if 0    /* recommended options in the makefile */
  18. + #    define  NOFUNCDEF    1
  19. + #    define  DIRENT        1
  20. + #    define  LSTAT        1
  21. + #    define  REGISTERS    12
  22. + #    define  IBUFSIZ        16384
  23. + #    define  OBUFSIZ        16384
  24. + #    define  UTIME_H        1
  25. + #endif
  26. + #    define    COMPILE_DATE    __DATE__
  27. + #    include <unistd.h>
  28. + #    include <stddef.h>
  29. + #    include <stdlib.h>
  30. + #    include <string.h>
  31. + #    include <memory.h>
  32. + #endif
  33.   #ifndef    O_BINARY
  34.   #    define    O_BINARY    0    /* System has no binary mode                            */
  35.   #endif
  36. ***************
  37. *** 644,650 ****
  38. --- 665,673 ----
  39.   void      compdir            ARGS((char *));
  40.   void      compress        ARGS((int,int));
  41.   void      decompress        ARGS((int,int));
  42. + #ifndef atarist
  43.   char      *rindex            ARGS((char *,int));
  44. + #endif
  45.   void      read_error        ARGS((void));
  46.   void      write_error        ARGS((void));
  47.   void     abort_compress    ARGS((void));
  48. ***************
  49. *** 1798,1803 ****
  50. --- 1821,1827 ----
  51.               write_error();
  52.       }
  53.   
  54. + #ifndef atarist
  55.   char *
  56.   rindex(s, c)        /* For those who don't have it in libc.a */
  57.       REG1 char    *s;
  58. ***************
  59. *** 1811,1816 ****
  60. --- 1835,1841 ----
  61.   
  62.           return(p);
  63.       }
  64. + #endif
  65.   
  66.   void
  67.   read_error()
  68.